This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useRef, useState } from 'react'; | |
import { View, StyleSheet, ScrollView } from 'react-native'; | |
import Animated, { | |
useSharedValue, | |
interpolate, | |
useAnimatedStyle, | |
Extrapolation, | |
} from 'react-native-reanimated'; | |
// Changeable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Car { | |
public $public_parent = 'public parent'; | |
private $private_parent = 'private parent'; | |
protected $protected_parent = 'protected parent'; | |
public function getCarPrivate(){ | |
return $this->private_parent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$(document).click(function(event){ | |
if(event.target.id == "my_submit"){ | |
alert("yo"); | |
var my_phone = $("#my_amount").val(); | |
var my_number = $("#my_phone").val(); | |
alert(my_phone + my_number); | |
} | |
}); | |
}); |